home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / getrusage.c,v < prev    next >
Text File  |  1988-06-19  |  3KB  |  119 lines

  1. head     1.1;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.1
  9. date     88.06.19.14.31.28;  author ouster;  state Exp;
  10. branches ;
  11. next     ;
  12.  
  13.  
  14. desc
  15. @@
  16.  
  17.  
  18.  
  19. 1.1
  20. log
  21. @Initial revision
  22. @
  23. text
  24. @/* 
  25.  * getrusage.c --
  26.  *
  27.  *    Procedure to map from Unix getrusage system call to Sprite.
  28.  *
  29.  * Copyright (C) 1986 Regents of the University of California
  30.  * All rights reserved.
  31.  */
  32.  
  33. #ifndef lint
  34. static char rcsid[] = "$Header: getrusage.c,v 1.2 87/08/24 17:42:02 andrew Exp $ SPRITE (Berkeley)";
  35. #endif not lint
  36.  
  37. #include "sprite.h"
  38. #include "proc.h"
  39.  
  40. #include <sys/time.h>
  41. #include <sys/resource.h>
  42.  
  43. #include "compatInt.h"
  44.  
  45. /*
  46.  * Convert from a Sprite Time to a Unix struct timeval.  The structures
  47.  * really are compatible, but C won't permit a cast from one to the other,
  48.  * so use a macro instead.
  49.  */
  50.  
  51. #define COPYTIME(TO,FROM) { \
  52.         (TO).tv_sec = (FROM).seconds; \
  53.         (TO).tv_usec = (FROM).microseconds; \
  54.       }
  55.  
  56.  
  57. /*
  58.  *----------------------------------------------------------------------
  59.  *
  60.  * getrusage --
  61.  *
  62.  *    Procedure to map from Unix getrusage system call to Sprite
  63.  *    Proc_GetResUsage.  Note that getrusage normally returns more
  64.  *    information than Proc_GetResUsage, so many fields must be set
  65.  *    to zero.
  66.  *
  67.  * Results:
  68.  *    UNIX_ERROR is returned upon error, with the actual error code
  69.  *    stored in errno.  Upon success, UNIX_SUCCESS is returned and the
  70.  *    rusage struct is filled with the available information.
  71.  *
  72.  * Side effects:
  73.  *    None.
  74.  *
  75.  *----------------------------------------------------------------------
  76.  */
  77.  
  78. int
  79. getrusage(who, rusage)
  80.      int who;
  81.      struct rusage *rusage;
  82. {
  83.     ReturnStatus status;        /* result returned by Proc_GetResUsage */
  84.     Proc_ResUsage spriteUsage;         /* sprite resource usage buffer */
  85.  
  86.     status = Proc_GetResUsage(PROC_MY_PID, &spriteUsage);
  87.     if (status != SUCCESS) {
  88.     errno = Compat_MapCode(status);
  89.     return(UNIX_ERROR);
  90.     } else {
  91.     if (who == RUSAGE_SELF) {
  92.         COPYTIME(rusage->ru_utime, spriteUsage.userCpuUsage);
  93.         COPYTIME(rusage->ru_stime, spriteUsage.kernelCpuUsage);
  94.     } else {
  95.         COPYTIME(rusage->ru_utime, spriteUsage.childUserCpuUsage);
  96.         COPYTIME(rusage->ru_stime, spriteUsage.childKernelCpuUsage);
  97.     }
  98.     rusage->ru_maxrss = 0;
  99.     rusage->ru_ixrss = 0;    /* integral shared memory size */
  100.     rusage->ru_idrss = 0;    /* integral unshared data size */
  101.     rusage->ru_isrss = 0;    /* integral unshared stack size */
  102.     rusage->ru_minflt = 0;    /* page reclaims */
  103.     rusage->ru_majflt = 0;    /* page faults */
  104.     rusage->ru_nswap = 0;    /* swaps */
  105.     rusage->ru_inblock = 0;    /* block input operations */
  106.     rusage->ru_oublock = 0;    /* block output operations */
  107.     rusage->ru_msgsnd = 0;    /* messages sent */
  108.     rusage->ru_msgrcv = 0;    /* messages received */
  109.     rusage->ru_nsignals = 0;    /* signals received */
  110.     rusage->ru_nvcsw =
  111.             spriteUsage.numWaitEvents;  /* voluntary context switches */
  112.     rusage->ru_nivcsw =
  113.             spriteUsage.numQuantumEnds;  /* involuntary context switches */
  114.  
  115.     return(UNIX_SUCCESS);
  116.     }
  117. }
  118. @
  119.